home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '90 / MacHack'90 Proceedings / John Norstad / Reusable Code / Source / vscn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-10  |  720 b   |  26 lines  |  [TEXT/MPS ]

  1. /*______________________________________________________________________
  2.  
  3.     vscn.h - Scanning Module Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990 Northwestern University.  Permission is 
  6.     granted to use this code in your own projects, provided you give credit 
  7.     to both John Norstad and Northwestern University in your about box or 
  8.     document.
  9. _____________________________________________________________________*/
  10.  
  11. #ifndef __vscn__
  12. #define __vscn__
  13.  
  14. #ifndef __glob__
  15. #include "glob.h"
  16. #endif
  17.  
  18. extern Boolean vscn_CheckCancel(void);
  19. extern Boolean vscn_CheckFull (Handle report, short slop);
  20. extern void vscn_DoScan (ScanKind scanKind, ScanOp scanOp);
  21. extern void vscn_DoButton (ScanOp scanOp, short modifiers);
  22.  
  23.  
  24. #endif
  25.  
  26.